home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_licq.idb / usr / freeware / bin / viewurl-ncftp.sh.z / viewurl-ncftp.sh
Linux/UNIX/POSIX Shell Script  |  2002-04-08  |  339b  |  15 lines

  1. #!/bin/sh
  2. #
  3. # A shell script to view a url using lynx and xterm
  4. # Set the XTERM variable to where your xterm binary is and 
  5. # the LYNX variable to where your lynx binary is or
  6. # leave them as is if the binaries are in your path.
  7. # Graham Roff, February 1999.
  8. #
  9.  
  10. NCFTP=ncftp
  11. XTERM=xterm
  12.  
  13. ${XTERM} -title "Licq URL View" -e ${NCFTP} "$1"
  14.